    /* 전체 폰트 사이즈 통일 (PC/모바일 반응형) */
    html,
    body {
        font-size: 16px;
    }

    @media (max-width: 767.98px) {

        html,
        body {
            font-size: 15px;
        }
    }

    /* 서비스 상세 페이지 스타일 개선 */
    /* 모든 주요 카드/갤러리/섹션에 border-radius: 30px;만 중복 없이 적용 */
    .service-info .card-body,
    .service-description .card-body,
    .review-item .card-body,
    .summary-card,
    .card,
    .image-card,
    .card-cover,
    #imageCarousel .modal-content {
        border-radius: 30px !important;
    }

    /* 불필요한 border-radius, rounded, bg-white 등 제거 */


    /* 서비스 상세 설명 영역 여백 통일 */
    .service-description .card-body {
        padding: 2rem 1.5rem !important;
    }

    /* 이미지 갤러리 카드 여백/그림자만 유지, border-radius 제거 */
    .image-card,
    .card-img-top {
        border-radius: unset !important;
    }

    /* 기타 기존 스타일 유지 */
    .badge {
        font-weight: 500 !important;
        font-size: 0.85em !important;
        border-radius: 8px !important;
        padding: 0.35em 0.8em !important;
        background: #f5f5f5 !important;
        color: #000 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .price-tag {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: #000 !important;
    }

    .btn-primary,
    .btn-modern {
        background: #000 !important;
        color: #fff !important;
        border-radius: 12px !important;
        font-weight: 600 !important;
        padding: 0.8rem 1.5rem !important;
        border: none !important;
        transition: all 0.18s cubic-bezier(.4, 0, .2, 1) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    }

    .btn-primary:hover,
    .btn-modern:hover {
        background: #fff !important;
        color: #000 !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13) !important;
        border: 1px solid #000 !important;
    }

    .section-tabs {
        border-bottom: 1px solid #eee !important;
        background: #fff !important;
    }

    .review-item {
        border: 1px solid #eee !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        background: #fff !important;
    }

    /* 반응형 최소화: Bootstrap 기본값만 사용 */

    .summary-card {
        background: #fff;
        border-radius: 15px;
        /*border: solid 1px #eee;*/
        box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05) !important
    }

    .summary-card .row {
        background: #fff;
    }


    .image-card {
        border-radius: 12px;
        overflow: hidden;
    }

    .card-img-top {
        width: 100%;
        height: auto;
        object-fit: contain;
        cursor: zoom-in;
    }

    .reco-card-img-top {
        width: 100%;
        height: 300px;
        object-fit: contain;
        cursor: zoom-in;
    }

    /*
    @media (max-width: 768px) {
        .card-img-top {
            height: 250px;
        }
    }
    */
    @media (max-width:768px) {
        .row-mo {
            flex-shrink: 0;
            width: 100%;
            max-width: 100%;
            padding-right: 0;
            padding-left: 0;

        }
    }

    /* Modern Swiper Styling */
    .image-gallery-swiper {
        --swiper-navigation-size: 23px;
        --swiper-pagination-bullet-size: 10px;
        --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.5);
        --swiper-pagination-bullet-inactive-opacity: 1;
    }

    .swiper-slide {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-circle {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    .btn-circle:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .swiper-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    }

    .backdrop-blur {
        backdrop-filter: blur(6px);
    }

    .swiper-pagination-bullet-active {
        background: #000 !important;
        transform: scale(1.3);
    }

    @media (max-width: 768px) {
        .btn-circle {
            width: 40px;
            height: 40px;
        }

        .swiper-caption .fs-5 {
            font-size: 1rem !important;
        }
    }

    /* 모달 커스텀 스타일 */
    #imageModal .modal-content {
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
    }

    #imageModal .modal-body {
        min-height: 70vh;
    }

    .cursor-zoom-out {
        cursor: zoom-out;
        transition: transform 0.3s ease-in-out;
    }

    #imageModal .btn-close {
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    #imageModal .btn-close:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    @media (max-width: 768px) {
        #imageModal .modal-body {
            padding: 1rem;
        }

        #imageModal img {
            max-height: 80vh !important;
        }
    }

    .review-form {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
    }

    .review-item {
        border: 1px solid #eee;
        border-radius: 8px;
        transition: transform 0.2s;
    }

    .review-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }

    .star-rating {
        display: inline-block;
    }

    .star-rating .fa-star {
        font-size: 1.1em;
    }

    .star-rating .text-warning {
        color: #FFD600 !important;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    .fa-star-half-alt:before,
    .fa-star-half-stroke:before {
        content: "\f5c0";
        color: #FFD600;
        font-size: 1.13em;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    .star-rating-widget {
        position: relative;
        padding: 8px 0;
    }

    .stars-container {
        display: flex;
        gap: 8px;
    }

    .star-btn {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .star-btn i {
        font-size: 2.2rem;
        color: #ddd;
        transition: color 0.3s, transform 0.2s;
    }

    .star-btn:hover i,
    .star-btn.active i {
        color: #ffd700;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    .star-btn:hover {
        transform: scale(1.1);
    }

    .rating-feedback {
        font-size: 0.9em;
        opacity: 0.8;
        min-height: 23px;
    }

    /* Mobile adaptation */
    @media (max-width: 768px) {
        .star-btn i {
            font-size: 1.8rem;
        }

        .stars-container {
            gap: 5px;
        }
    }

    .review-badge .badge {
        padding: 0.5em 0.8em;
        font-size: 0.9rem;
        border-radius: 50px;
    }

    .review-badge i {
        color: #ffc107;
        text-shadow: 0 0 2px rgba(255, 193, 7, 0.5);
    }

    .price-tag {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }

    @media (max-width: 768px) {
        .review-badge .badge {
            font-size: 0.8rem;
            padding: 0.4em 0.7em;
        }

        .price-tag {
            font-size: 1.5rem;
        }
    }

    /* 숨김 처리된 리뷰 스타일 */
    .hidden-review-alert {
        background-color: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 15px;
        margin-bottom: 15px;
    }

    /* 관리자용 원본 내용 스타일 */
    .admin-review-content {
        border-left: 3px solid #dc3545;
        border-radius: 0 5px 5px 0;
        background-color: #f8f9fa;
    }

    .admin-review-content h6 {
        font-weight: bold;
        margin-bottom: 10px;
    }

    /* 별점 스타일 */
    .star-rating {
        display: inline-block;
    }

    .star-rating .fa-star {
        font-size: 1.1em;
    }

    .star-rating .text-warning {
        color: #FFD600 !important;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    /* 반응형 조정 */
    @media (max-width: 768px) {
        .card-title {
            font-size: 1.1rem;
        }

        .star-rating {
            margin-left: 0px;
        }

        .star-rating .fa-star {
            font-size: 0.9em;
        }
    }

    .recommendedReviewsSwiper {
        padding: 30px 10px;
    }

    .recommendedReviewsSwiper .swiper-slide {
        height: auto;
        opacity: 0.5;
        transition: opacity 0.3s;
    }

    .recommendedReviewsSwiper .swiper-slide-active {
        opacity: 1;
    }

    .recommendedReviewsSwiper .card {
        height: 100%;
        border-radius: 15px;
    }

    /* 탭 스타일링 */
    .service-tabs {
        padding: 0.5rem 0;
        border-bottom: none;
        display: flex;
        justify-content: center;
        /* 탭을 가운데 정렬 */
    }

    .service-tabs .nav-link {
        font-size: 0.9rem;
        color: #6c757d;
        border: none;
        border-radius: 0;
        padding: 0.8rem 1.5rem;
        position: relative;
        transition: all 0.3s ease;
    }

    .service-tabs .nav-link.active,
    .service-tabs .nav-link:hover {
        color: #0d6efd;
        background: transparent;
    }

    .service-tabs .nav-link.active:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 3px;
        background: #0d6efd;
        border-radius: 3px 3px 0 0;
    }

    /* 부드러운 스크롤 */
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 120px;
        /* 탭 높이만큼 여백 */
    }

    .nav-sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
        z-index: 1020;
    }

    .review-item {
        transition: all 0.3s ease;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .review-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .reply-form {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        border: 1px solid #eee;
    }

    .toggle-reply-form {
        transition: all 0.2s ease;
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
    }

    .toggle-reply-form:hover {
        background-color: #e9ecef;
        transform: translateY(-1px);
    }

    /* 관리자 답글 표시 스타일 */
    .admin-reply {
        border-left: 3px solid #6f42c1;
        background-color: #f8f9fa;
        padding: 10px;
        margin-top: 5px;
    }

    .admin-reply-badge {
        background-color: #6f42c1;
        color: white;
        font-size: 0.7rem;
        padding: 2px 5px;
        border-radius: 3px;
        margin-left: 5px;
    }

    /* 탭 네비게이션 스타일 */
    .nav-tabs-wrapper {
        position: relative;
        z-index: 1020;
        /*background: white;*/
        display: flex;
        justify-content: center;
        /* 부모 요소에서 자식 요소를 수평 가운데 정렬 */
        align-items: center;
        /* 자식 요소를 수직 가운데 정렬 */
    }

    .nav-tabs {
        border-bottom: none;
        padding: 0rem 0;
        flex-wrap: nowrap;
        /* 한 줄로 유지 */
        overflow-x: auto;
        overflow-y: hidden;
        /* 가로 스크롤 활성화 */
        -webkit-overflow-scrolling: touch;
        /* 부드러운 스크롤 */
    }

    .nav-tabs .nav-link {
        color: #495057;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        padding: 0.75rem 1.25rem;
    }

    .nav-tabs .nav-link.active {
        color: #0d6efd;
        font-weight: 600;
        background-color: transparent;
        border: 0px !important;
    }

    .nav-tabs .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background-color: #0d6efd;
        border-radius: 1px;
    }

    .nav-tabs .badge {
        /*font-size: 0.7em;*/
        vertical-align: middle;
        position: relative;
        top: -5px;
    }

    .nav-item {
        margin: 0 8px;
        /* 탭 간 간격 설정 */
        flex-shrink: 0;
        /* 탭 크기 축소 방지 */
    }

    /* 공유 아이콘 배경 색상 */
    .bg-facebook {
        background-color: #1877f2;
    }

    .bg-twitter {
        background-color: #000000;
    }

    .bg-kakao {
        background-color: #fee500;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        transition: transform 0.2s;
    }

    .icon-wrapper:hover {
        transform: scale(1.1);
    }

    @media (min-width: 992px) {
        .service-tabs .nav-link {
            font-size: 1rem;
        }
    }

    /* 컨테이너 width/여백 Bootstrap 기준에 맞춰 통일 */
    .container,
    .container-fluid,
    .myapp__container,
    .glass-card>.container {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        /*padding-left: 40px;
        padding-right: 40px;*/
        box-sizing: border-box;
    }

    /*
    @media (max-width: 991px) {

        .container,
        .container-fluid,
        .myapp__container,
        .glass-card>.container {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
*/
    .nav-sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
        z-index: 1020;
    }

    .review-item {
        transition: all 0.3s ease;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .review-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .reply-form {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        border: 1px solid #eee;
    }

    .toggle-reply-form {
        transition: all 0.2s ease;
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
    }

    .toggle-reply-form:hover {
        background-color: #e9ecef;
        transform: translateY(-1px);
    }

    /* 관리자 답글 표시 스타일 */
    .admin-reply {
        border-left: 3px solid #6f42c1;
        background-color: #f8f9fa;
        padding: 10px;
        margin-top: 5px;
    }

    .admin-reply-badge {
        background-color: #6f42c1;
        color: white;
        font-size: 0.7rem;
        padding: 2px 5px;
        border-radius: 3px;
        margin-left: 5px;
    }

    /* 탭 네비게이션 스타일 */
    .nav-tabs-wrapper {
        position: relative;
        z-index: 1020;
        /*background: white;*/
        display: flex;
        justify-content: center;
        /* 부모 요소에서 자식 요소를 수평 가운데 정렬 */
        align-items: center;
        /* 자식 요소를 수직 가운데 정렬 */
    }

    .nav-tabs {
        border-bottom: none;
        padding: 0rem 0;
        flex-wrap: nowrap;
        /* 한 줄로 유지 */
        overflow-x: auto;
        overflow-y: hidden;
        /* 가로 스크롤 활성화 */
        -webkit-overflow-scrolling: touch;
        /* 부드러운 스크롤 */
    }

    .nav-tabs .nav-link {
        color: #495057;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        padding: 0.75rem 1.25rem;
    }

    .nav-tabs .nav-link.active {
        color: #0d6efd;
        font-weight: 600;
        background-color: transparent;
        border: 0px !important;
    }

    .nav-tabs .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background-color: #0d6efd;
        border-radius: 1px;
    }

    .nav-tabs .badge {
        /*font-size: 0.7em;*/
        vertical-align: middle;
        position: relative;
        top: -5px;
    }

    .nav-item {
        margin: 0 8px;
        /* 탭 간 간격 설정 */
        flex-shrink: 0;
        /* 탭 크기 축소 방지 */
    }

    .glass-card {
        /*background: rgba(255, 255, 255, 0.9);*/
        backdrop-filter: blur(10px);
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* 공유 아이콘 배경 색상 */
    .bg-facebook {
        background-color: #1877f2;
    }

    .bg-twitter {
        background-color: #000000;
    }

    .bg-kakao {
        background-color: #fee500;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        transition: transform 0.2s;
    }

    .icon-wrapper:hover {
        transform: scale(1.1);
    }

    @media (min-width: 992px) {
        .service-tabs .nav-link {
            font-size: 1rem;
        }
    }

    /* 네비와 동일한 위치/여백만 적용, 나머지 속성은 그대로 */
    .container,
    .glass-card>.container,
    .summary-card,
    .con-bg,
    .gallery-section {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        /*padding-left: 0 !important;
        padding-right: 0 !important;*/
    }

    /*
    @media (max-width: 991px) {

        .container,
        .glass-card>.container,
        .summary-card,
        .con-bg,
        .gallery-section {
           padding-left: 20px;
            padding-right: 20px;
        }
    }
*/
    /* 신청하기 버튼 블랙 앤 화이트 반전 + 고대비 호버 */
    .btn-modern {
        padding: 1.05rem 2.2rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        border-radius: 16px;
        transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
        border: none;
        font-size: 1.13rem;
        background: #111;
        color: #fff;
        outline: none;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .btn-modern:hover,
    .btn-modern:focus {
        background: #fff;
        color: #111;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        transform: translateY(-2px) scale(1.03);
    }

    .btn-modern:active {
        background: #f3f4f6;
        color: #111;
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    }

    .btn-modern i {
        font-size: 1.25em;
        vertical-align: -0.1em;
        margin-right: 0.5em;
        display: inline-block;
    }

    @media (max-width: 991px) {
        .btn-modern {
            padding: 0.9rem 1.3rem;
            font-size: 1.01rem;
        }

        .btn-modern i {
            font-size: 1.08em;
        }
    }

    @media (max-width: 767px) {
        .btn-modern {
            padding: 0.8rem 1.1rem;
            font-size: 0.97rem;
            margin-left: 16px;
            margin-right: 16px;
            width: calc(100% - 32px);
            min-width: 0;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .btn-modern i {
            font-size: 1em;
        }
    }

    .custom-alert-width {
        max-width: 100%;
    }

    @media (min-width: 992px) {
        .custom-alert-width {
            max-width: 30%;
        }
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #212529;
    }

    .content-box {
        color: #495057;
        line-height: 1.6;
        font-size: 1rem;
    }

    .content-box p {
        margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
        .card-title {
            font-size: 1.1rem;
        }

        .content-box {
            font-size: 0.95rem;
        }
    }

    /* 이미지 갤러리 및 모든 주요 img에 border-radius: 30px; 적용 */
    .card-img-top,
    .img-fluid,
    .thumbnail-trigger,
    .related-products img,
    .image-gallery-swiper img,
    #imageCarousel img {
        border-radius: 30px !important;
    }

    .card-header {
        background: unset !important;
        border: none !important;
        border-radius: unset !important;
    }

    @media (max-width: 767.98px) {
        .service-info .row.align-items-center {
            flex-direction: column !important;
            gap: 1.5rem !important;
            align-items: stretch !important;
        }

        .service-info .col-8,
        .service-info .col-md-8,
        .service-info .col-4,
        .service-info .col-md-4 {
            width: 100% !important;
            max-width: 100% !important;
            text-align: left !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .service-info .d-flex.gap-3.mb-3.align-items-center {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 0.7rem !important;
            margin-bottom: 1rem !important;
        }

        .service-info .d-flex.align-items-center.gap-4 {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 0.7rem !important;
        }

        .service-info .text-end {
            text-align: left !important;
        }

        .service-info .bottom-fixed.d-grid.gap-2.mt-4 {
            margin-top: 1.2rem !important;
        }
    }

    /* 신청하기 버튼 PC/모바일 반응형 디자인 */
    .apply-btn-custom {
        display: block;
        border-radius: 999px !important;
        font-weight: 700;
        font-size: 1.13rem;
        padding: 1rem 0;
        background: #111;
        color: #fff;
        border: none;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
        transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }

    .apply-btn-custom:hover,
    .apply-btn-custom:focus {
        background: #fff;
        color: #111;
        border: 1.5px solid #111;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    }

    @media (max-width: 767.98px) {
        .apply-btn-custom {
            font-size: 1.05rem;
            padding: 1.1rem 0;
            margin: 0 auto;
            border-radius: 999px !important;
        }
    }

    /* 서비스 설명(#description) 영역 반응형 개선 */
    #description.card-body {
        border-radius: 30px !important;
        box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05) !important;
        background: #fff !important;
        /*padding: 2rem 2rem !important;*/
        margin-bottom: 1.5rem !important;
    }

    @media (max-width: 767.98px) {
        #description.card-body {
            padding: 1rem 1.5rem;
            border-radius: 20px !important;
            margin-bottom: 1.2rem !important;
        }

        #description .card-title {
            font-size: 1.08rem !important;
            margin-bottom: 1.1rem !important;
        }

        #description .content-box {
            font-size: 0.97rem !important;
            line-height: 1.6 !important;
        }
    }

    /* 이미지 갤러리 그리드 및 간격 개선 */
    .image-gallery-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    @media (min-width: 992px) {
        .image-gallery-row {
            /*grid-template-columns: 1fr 1fr;*/
            gap: 28px;
        }
    }

    .image-gallery-row .col {
        padding: 0 !important;
    }

    /* 요약 정보 카드 첨부 이미지 스타일 (PC/모바일 반응형) */
    .summary-card-custom {
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
        /*padding: 1.5rem 1.2rem;*/
        margin-bottom: 1.5rem;
        max-width: 1440px;
        /*margin-left: auto;
        margin-right: auto;*/
    }

    .summary-meta-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }

    .summary-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        min-width: 0;
        flex: 1 1 0;
    }

    .meta-label {
        font-size: 0.92rem;
        color: #888;
        margin-bottom: 0.2rem;
    }

    .meta-value {
        font-size: 1.05rem;
        color: #000;
        ;
        font-weight: 500;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.3em;
    }

    .star-group .fa-star {
        color: #FFD600;
        font-size: 1.1em;
        margin-right: 1px;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    .star-group .fa-star:not(.filled) {
        color: #ddd;
    }

    .score {
        font-weight: 700;
        margin-left: 0.2em;
    }

    .count {
        color: #888;
        font-size: 0.95em;
        margin-left: 0.2em;
    }

    .origin {
        text-decoration: line-through;
        color: #aaa;
        margin-right: 0.3em;
    }

    .discount {
        color: #111;
        font-weight: 700;
        margin-right: 0.3em;
    }

    .discount-badge {
        background: #ffebee;
        color: #d32f2f;
        font-size: 0.92em;
    }

    .summary-btn-row {
        display: flex;
        flex-direction: row;
        gap: 0.7rem;
        margin-top: 0.7rem;
    }

    .summary-btn {
        border-radius: 999px;
        font-weight: 600;
        font-size: 1.01em;
        padding: 0.55em 1.4em;
        border: 1.5px solid #000;
        ;
        background: #fff;
        color: #000;
        ;
        box-shadow: none;
        transition: background 0.15s, color 0.15s, border 0.15s;
    }

    .summary-btn.active,
    .summary-btn:active,
    .summary-btn:focus {
        background: #000;
        ;
        color: #fff;
        border-color: #000;
        ;
    }

    @media (max-width: 767.98px) {
        .summary-card-custom {
            padding: 1rem 1rem;
            border-radius: 16px;
            max-width: 100vw;
        }

        .summary-meta-row {
            flex-direction: column;
            gap: 0.7rem;
        }

        .summary-btn-row {
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 992px) {
        .summary-card-custom {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .summary-meta-row {
            flex-direction: row;
            gap: 1.2rem;
            align-items: flex-end;
        }

        .summary-btn-row {
            justify-content: flex-start;
            gap: 1.2rem;
            margin-top: 1.2rem;
        }

        .summary-btn {
            min-width: 110px;
            font-size: 1.08em;
            padding: 0.55em 1.7em;
        }
    }

    /* ... 기존 summary-card-custom 스타일 ... */
    .summary-apply-sticky {
        position: sticky;
        top: 15px;
        z-index: 10;
        margin-top: 1.5rem;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        padding: 0.7rem 0 0.7rem 0;
    }

    @media (max-width: 991px) {
        .summary-apply-sticky {
            position: static;
            margin-top: 1rem;
            box-shadow: none;
            border-radius: 12px;
            padding: 0.5rem 0 0.5rem 0;
        }
    }

    @media (min-width: 992px) {
        .summary-card-custom {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .summary-meta-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .summary-meta {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.3rem;
        }

        .meta-label {
            font-size: 1rem;
            color: #888;
            margin-bottom: 0.2rem;
            font-weight: 500;
        }

        .meta-value {
            font-size: 1.13rem;
            color: #000;
            ;
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5em;
        }

        .star-group .fa-star {
            color: #FFD600;
            font-size: 1.15em;
            margin-right: 1px;
        }

        .star-group .fa-star:not(.filled) {
            color: #ddd;
        }

        .score {
            font-weight: 700;
            margin-left: 0.3em;
            font-size: 1.1em;
        }

        .count {
            color: #888;
            font-size: 1em;
            margin-left: 0.2em;
        }

        .origin {
            text-decoration: line-through;
            color: #aaa;
            margin-right: 0.5em;
            font-size: 1em;
        }

        .discount {
            color: #111;
            font-weight: 700;
            margin-right: 0.5em;
            font-size: 1.2em;
        }

        .discount-badge {
            background: #ffebee;
            color: #d32f2f;
            font-size: 1em;
            border-radius: 4px;
            padding: 0.3em 0.9em;
            font-weight: 600;
        }

        .summary-btn-row {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.2rem;
        }

        .summary-btn {
            min-width: 120px;
            font-size: 1.08em;
            padding: 0.7em 1.7em;
            border-radius: 999px;
            font-weight: 600;
            border: 1.5px solid #000;
            ;
            background: #fff;
            color: #000;
            ;
            transition: background 0.15s, color 0.15s, border 0.15s;
            box-shadow: none;
        }

        .summary-btn.active,
        .summary-btn:active,
        .summary-btn:focus {
            background: #000;
            ;
            color: #fff;
            border-color: #000;
            ;
        }
    }

    @media (min-width: 992px) {
        .summary-card-custom {
            max-width: 600px;
            margin: 0 auto 2rem auto;
            padding: 2.5rem 2.5rem 2rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
            border: 1px solid #f0f0f0;
            background: #fff;
        }

        .summary-meta-row {
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .summary-meta {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
        }

        .meta-label {
            font-size: 1rem;
            color: #888;
            margin-bottom: 0.2rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .meta-value {
            font-size: 1.13rem;
            color: #000;
            ;
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5em;
        }

        .summary-meta .badge {
            background: #f5f5f5;
            color: #000;
            ;
            font-size: 0.98em;
            border-radius: 8px;
            padding: 0.35em 1.1em;
            font-weight: 500;
            margin-right: 0.3em;
            margin-bottom: 0;
            letter-spacing: -0.01em;
        }

        .star-group .fa-star {
            color: #FFD600;
            font-size: 1.18em;
            margin-right: 1px;
        }

        .star-group .fa-star:not(.filled) {
            color: #ddd;
        }

        .score {
            font-weight: 700;
            margin-left: 0.3em;
            font-size: 1.1em;
        }

        .count {
            color: #888;
            font-size: 1em;
            margin-left: 0.2em;
        }

        .origin {
            text-decoration: line-through;
            color: #aaa;
            margin-right: 0.5em;
            font-size: 1em;
        }

        .discount {
            color: #111;
            font-weight: 700;
            margin-right: 0.5em;
            font-size: 1.2em;
        }

        .discount-badge {
            background: #ffebee;
            color: #d32f2f;
            font-size: 1em;
            border-radius: 4px;
            padding: 0.3em 0.9em;
            font-weight: 600;
            margin-left: 0.2em;
        }

        .summary-btn-row {
            width: 100%;
            display: flex;
            gap: 1.2rem;
            margin-top: 1.2rem;
            justify-content: center;
        }

        .summary-btn {
            min-width: 120px;
            font-size: 1.08em;
            padding: 0.7em 1.7em;
            border-radius: 999px;
            font-weight: 600;
            border: 1.5px solid #000;
            ;
            background: #fff;
            color: #000;
            ;
            transition: background 0.15s, color 0.15s, border 0.15s;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5em;
        }

        .summary-btn i {
            font-size: 1.1em;
            margin-right: 0.2em;
        }

        .summary-btn.active,
        .summary-btn:active,
        .summary-btn:focus {
            background: #000;
            ;
            color: #fff;
            border-color: #000;
            ;
        }

        .summary-btn:hover {
            background: #f5f5f5;
            color: #111;
            border-color: #111;
        }

        .bottom-fixed {
            width: 100%;
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }

        .apply-btn-custom {
            border-radius: 999px !important;
            font-weight: 700;
            font-size: 1.13rem;
            padding: 1rem 0;
            background: #111;
            color: #fff;
            border: none;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
            transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .apply-btn-custom:hover,
        .apply-btn-custom:focus {
            background: #fff;
            color: #111;
            border: 1.5px solid #111;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        }
    }

    @media (min-width: 992px) {
        .summary-card-custom {
            max-width: 900px;
            margin: 0 auto 2rem auto;
            padding: 2.2rem 2.5rem 2rem 2.5rem;
            border-radius: 18px;
            background: none;
            border: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .summary-meta-row {
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-meta {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .meta-label {
            font-size: 0.98rem;
            color: #888;
            margin-bottom: 0.1rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .meta-value {
            font-size: 1.08rem;
            color: #000;
            ;
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5em;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-meta .badge {
            background: #f5f5f5;
            color: #000;
            ;
            font-size: 0.98em;
            border-radius: 8px;
            padding: 0.35em 1.1em;
            font-weight: 500;
            margin-right: 0.3em;
            margin-bottom: 0;
            letter-spacing: -0.01em;
            border: none;
            box-shadow: none;
        }

        .star-group .fa-star {
            color: #000;
            ;
            font-size: 1.13em;
            margin-right: 1px;
        }

        .star-group .fa-star.filled {
            color: #FFD600;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }

        .score {
            font-weight: 700;
            margin-left: 0.3em;
            font-size: 1.08em;
        }

        .count {
            color: #888;
            font-size: 0.98em;
            margin-left: 0.2em;
        }

        .origin {
            text-decoration: line-through;
            color: #aaa;
            margin-right: 0.5em;
            font-size: 1em;
        }

        .discount {
            color: #111;
            font-weight: 700;
            margin-right: 0.5em;
            font-size: 1.1em;
        }

        .discount-badge {
            background: #f5f5f5;
            color: #000;
            ;
            font-size: 0.98em;
            border-radius: 8px;
            padding: 0.3em 0.9em;
            font-weight: 500;
            margin-left: 0.2em;
            border: none;
            box-shadow: none;
        }

        .summary-btn-row {
            width: 100%;
            display: flex;
            gap: 1.1rem;
            margin-top: 1.2rem;
            justify-content: flex-start;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-btn {
            min-width: 90px;
            font-size: 1em;
            padding: 0.6em 1.5em;
            border-radius: 999px;
            font-weight: 600;
            border: 1.5px solid #000;
            ;
            background: #fff;
            color: #000;
            ;
            transition: background 0.15s, color 0.15s, border 0.15s;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5em;
        }

        .summary-btn i {
            font-size: 1.1em;
            margin-right: 0.2em;
        }

        .summary-btn.active,
        .summary-btn:active,
        .summary-btn:focus {
            background: #000;
            ;
            color: #fff;
            border-color: #000;
            ;
        }

        .summary-btn:hover {
            background: #f5f5f5;
            color: #111;
            border-color: #111;
        }

        .bottom-fixed {
            width: 100%;
            margin-top: 2rem;
            display: flex;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .apply-btn-custom {
            border-radius: 999px !important;
            font-weight: 700;
            font-size: 1.08rem;
            padding: 0.9rem 2.2rem;
            background: #111;
            color: #fff;
            border: none;
            box-shadow: none;
            transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
            width: auto;
            max-width: 550px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .apply-btn-custom:hover,
        .apply-btn-custom:focus {
            background: #fff;
            color: #111;
            border: 1.5px solid #111;
            box-shadow: none;
        }
    }

    @media (min-width: 992px) {
        .summary-card-custom {
            max-width: 100%;
            margin: 0 auto 2rem auto;
            /*padding: 0 2rem 2rem 2rem;*/
            border-radius: 0;
            background: none;
            border: none;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }

        .summary-meta-row {
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 0;
            margin-bottom: 1.5rem;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-meta-list {
            display: flex;
            align-items: flex-end;
            gap: 2.5rem;
            flex: 1 1 0;
        }

        .summary-meta {
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .meta-label {
            font-size: 0.98rem;
            color: #888;
            margin-bottom: 0.1rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        .meta-value {
            font-size: 1.08rem;
            color: #000;
            ;
            font-weight: 600;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5em;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-meta .badge {
            background: #f5f5f5;
            color: #000;
            ;
            font-size: 0.98em;
            border-radius: 8px;
            padding: 0.35em 1.1em;
            font-weight: 500;
            margin-right: 0.3em;
            margin-bottom: 0;
            letter-spacing: -0.01em;
            border: none;
            box-shadow: none;
        }

        .star-group .fa-star {
            color: #000;
            ;
            font-size: 1.13em;
            margin-right: 1px;
        }

        .star-group .fa-star.filled {
            color: #FFD600;
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
        }

        .score {
            font-weight: 700;
            margin-left: 0.3em;
            font-size: 1.08em;
        }

        .count {
            color: #888;
            font-size: 0.98em;
            margin-left: 0.2em;
        }

        .origin {
            text-decoration: line-through;
            color: #aaa;
            margin-right: 0.5em;
            font-size: 1em;
        }

        .discount {
            color: #111;
            font-weight: 700;
            margin-right: 0.5em;
            font-size: 1.1em;
        }

        .discount-badge {
            background: #f5f5f5;
            color: #000;
            ;
            font-size: 0.98em;
            border-radius: 8px;
            padding: 0.3em 0.9em;
            font-weight: 500;
            margin-left: 0.2em;
            border: none;
            box-shadow: none;
        }

        .summary-btn-row {
            display: flex;
            gap: 1.1rem;
            margin-left: auto;
            margin-top: 0;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-btn {
            min-width: 90px;
            font-size: 1em;
            padding: 0.6em 1.5em;
            border-radius: 999px;
            font-weight: 600;
            border: 1.5px solid #000;
            ;
            background: #fff;
            color: #000;
            ;
            transition: background 0.15s, color 0.15s, border 0.15s;
            box-shadow: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5em;
        }

        .summary-btn i {
            font-size: 1.1em;
            margin-right: 0.2em;
        }

        .summary-btn.active,
        .summary-btn:active,
        .summary-btn:focus {
            background: #000;
            ;
            color: #fff;
            border-color: #000;
            ;
        }

        .summary-btn:hover {
            background: #f5f5f5;
            color: #111;
            border-color: #111;
        }

        .bottom-fixed {
            width: 100%;
            margin-top: 2rem;
            display: flex;
            background: none;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .apply-btn-custom {
            border-radius: 999px !important;
            font-weight: 700;
            font-size: 1.08rem;
            padding: 0.9rem 2.2rem;
            background: #111;
            color: #fff;
            border: none;
            box-shadow: none;
            transition: all 0.18s cubic-bezier(.4, 0, .2, 1);
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .apply-btn-custom:hover,
        .apply-btn-custom:focus {
            background: #fff;
            color: #111;
            border: 1.5px solid #111;
            box-shadow: none;
        }
    }

    .form-select[multiple] {
        height: auto;
        min-height: 120px;
    }

    .image-upload-item {
        border: 1px dashed #ccc;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    /* 추천 리뷰 영역 card-text 여백 조정 */
    .recommendedReviewsSwiper .card-text {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    /* 추천/일반 리뷰 이름, 별점, 내용 동일 왼쪽 여백 */
    .recommendedReviewsSwiper h6.mb-0,
    .recommendedReviewsSwiper .star-rating,
    .recommendedReviewsSwiper .card-text,
    .review-item .card-title,
    .review-item .star-rating,
    .review-item .card-text {
        padding-left: 1rem;
    }

    /* 리뷰 내용(일반/추천 모두) 왼쪽 여백 확실히 적용 */
    .recommendedReviewsSwiper .card-text,
    .review-item .review-content .card-text {
        padding-left: 1rem;
    }

    /* 기존에 추가된 불필요한 여백 관련 CSS 삭제 */
    /* ... existing code ... */
    /* 리뷰 카드 전체 왼쪽 여백만 적용 */
    .recommendedReviewsSwiper .card-body,
    .review-item .card-body {
        padding-left: 1rem;
    }


    /* 주요 텍스트 요소 폰트 크기 통일 */
    .card,
    .card-body,
    .card-text,
    .card-title,
    .review-item,
    .review-card,
    .summary-card,
    .summary-card-custom,
    .content-box,
    .star-rating,
    .form-label,
    .form-control,
    .btn,
    .badge {
        font-size: 1rem;
    }

    @media (max-width: 767.98px) {

        .card,
        .card-body,
        .card-text,
        .card-title,
        .review-item,
        .review-card,
        .summary-card,
        .summary-card-custom,
        .content-box,
        .star-rating,
        .form-label,
        .form-control,
        .btn,
        .badge {
            font-size: 0.94rem;
        }
    }

    /* 첨부이미지 스타일 모달 */
    .attach-gallery-modal .modal-dialog {
        margin: 0;
        max-width: 900px;
    }

    .attach-gallery-modal .modal-content {
        background: #fff;
        box-shadow: none;
        border: 0;
    }

    .attach-gallery-modal .modal-header {
        border: 0;
        padding: 0.5rem 1rem;
    }

    .attach-gallery-modal .modal-body {
        padding: 0;
    }

    .attach-gallery-modal .attach-image-block {
        margin-bottom: 12px;
    }

    .attach-gallery-modal .attach-image-block img {
        width: 100%;
        display: block;
        object-fit: contain;
        background: #f8f8f8;
        border-radius: 12px;
    }

    .attach-gallery-modal .attach-image-desc {
        font-size: 0.97rem;
        color: #888;
        margin-top: 6px;
        padding-left: 8px;
        padding-right: 8px;
    }

    /* 첨부이미지 스타일 모달 PC/모바일 최적화 */
    .attach-gallery-modal .modal-dialog {
        margin: 0;
        max-width: 900px;
        width: 100%;
    }

    .attach-gallery-modal .modal-content {
        background: #fff;
        box-shadow: none;
        border: 0;
        border-radius: 18px;
    }

    .attach-gallery-modal .modal-header {
        border: 0;
        padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    }

    .attach-gallery-modal .modal-body {
        padding: 24px 24px 12px 24px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .attach-gallery-modal .attach-image-block {
        margin-bottom: 18px;
    }

    .attach-gallery-modal .attach-image-block img {
        width: 100%;
        display: block;
        object-fit: contain;
        background: #f8f8f8;
        border-radius: 12px;
        max-height: 70vh;
    }

    .attach-gallery-modal .attach-image-desc {
        font-size: 0.97rem;
        color: #888;
        margin-top: 6px;
        padding-left: 8px;
        padding-right: 8px;
    }

    @media (max-width: 767.98px) {
        .attach-gallery-modal .modal-dialog {
            max-width: 98vw;
            margin: 0;
        }

        .attach-gallery-modal .modal-content {
            border-radius: 10px;
        }

        .attach-gallery-modal .modal-header {
            padding: 0.5rem 0.7rem 0.5rem 0.7rem;
        }

        .attach-gallery-modal .modal-body {
            padding: 8px 8px 4px 8px;
            max-height: 90vh;
        }

        .attach-gallery-modal .attach-image-block img {
            max-height: 45vh;
            border-radius: 8px;
        }

        .attach-gallery-modal .attach-image-desc {
            font-size: 0.93rem;
            padding-left: 4px;
            padding-right: 4px;
        }
    }

    /* 첨부이미지 스타일 모달 PC/모바일 최적화 및 가운데 정렬, 여백 개선 */
    .attach-gallery-modal .modal-dialog {
        margin: 0 auto;
        max-width: 900px;
        width: 100%;
        display: flex;
        align-items: center;
        min-height: 100vh;
        justify-content: center;
    }

    .attach-gallery-modal .modal-content {
        background: #fff;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        border: 0;
        border-radius: 18px;
        margin: 0 auto;
    }

    .attach-gallery-modal .modal-header {
        border: 0;
        padding: 0.5rem 2rem 0.5rem 2rem;
        background: none;
    }

    .attach-gallery-modal .modal-body {
        padding: 32px 40px 24px 40px;
        max-height: 90vh;
        overflow-y: auto;
        background: none;
    }

    .attach-gallery-modal .attach-image-block {
        margin-bottom: 28px;
        text-align: center;
    }

    .attach-gallery-modal .attach-image-block img {
        width: auto;
        max-width: 100%;
        max-height: 60vh;
        display: block;
        margin: 0 auto;
        object-fit: contain;
        background: #f8f8f8;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    }

    .attach-gallery-modal .attach-image-desc {
        font-size: 1.01rem;
        color: #888;
        margin-top: 10px;
        padding-left: 12px;
        padding-right: 12px;
        text-align: left;
    }

    @media (max-width: 767.98px) {
        .attach-gallery-modal .modal-dialog {
            max-width: 98vw;
            margin: 0;
            min-height: 100vh;
            padding: 0;
        }

        .attach-gallery-modal .modal-content {
            border-radius: 10px;
        }

        .attach-gallery-modal .modal-header {
            padding: 0.5rem 0.7rem 0.5rem 0.7rem;
        }

        .attach-gallery-modal .modal-body {
            padding: 10px 6px 6px 6px;
            max-height: 90vh;
        }

        .attach-gallery-modal .attach-image-block {
            margin-bottom: 14px;
        }

        .attach-gallery-modal .attach-image-block img {
            max-height: 38vh;
            border-radius: 8px;
        }

        .attach-gallery-modal .attach-image-desc {
            font-size: 0.93rem;
            padding-left: 4px;
            padding-right: 4px;
        }
    }

    .summary-btn-fixed-width {
        min-width: 100px;
        width: 110px;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .summary-btn {
        white-space: nowrap;
    }

    @media (max-width: 767.98px) {
        .summary-btn-fixed-width {
            min-width: 80px;
            width: 90px;
            font-size: 0.97em;
            padding: 0.5em 0.7em;
            gap: 0.3rem;
        }

        .summary-btn {
            font-size: 0.97em;
            padding: 0.5em 0.7em;
        }
    }

    #bookmarkBtnTop.active {
        background: #111 !important;
        color: #fff !important;
        border: none !important;
    }

    #bookmarkBtnTop.active i {
        color: #fff !important;
    }

    @media (max-width: 767.98px) {
        .bottom-fixed {
            bottom: 75px;
        }
    }

    .inquiry-card {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 1rem;
        transition: all 0.2s ease;
    }

    .inquiry-card:hover {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .reply-card {
        background-color: #f8f9fa;
        border-left: 3px solid #0d6efd;
        margin-top: 0.5rem;
    }

    .admin-reply-form {
        background-color: #f8f9fa;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    /*
    @media (max-width: 991.98px) {
        .footer-trendy {
            padding: 28px 0 12px 22px;
        }
    }
    */
    .swiper-button-next,
    .swiper-button-prev {
        width: 48px;
        height: 48px;
        /* 흰색 배경에 50% 투명도 */
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(0px);
        /* 밝은 회색 원형 배경 */
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    /* 기본 Swiper 아이콘 숨기기 */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        display: none;
    }

    /* 오른쪽 화살표 (next) */
    .swiper-button-next {
        right: 10px;
    }

    /* 왼쪽 화살표 (prev) */
    .swiper-button-prev {
        left: 10px;
    }