    /* 카드 그리드 레이아웃 */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 카드 스타일 */
    .card {
        border: none;
        border-radius: 1rem;
        transition: transform 0.3s ease;
        background-color: #f9f9f9;
        /*border: 1px solid #eee;*/
        border-radius: 1rem;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    /* 카드 이미지 */
    .card-img-top {
        border-radius: 30px;
        width: 300px;
        /* 이미지 높이 고정 */
        object-fit: contain;
        /* 이미지 비율 유지 */
    }

    /* 카드 본문 */
    .card-body {
        padding: 1.5rem;
        text-align: center;
        border-radius: 30px;
    }

    .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

    .card-text {
        font-size: 1rem;
        color: #555;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }

    .price {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 1.5rem;
    }

    .service-info {
        font-size: 0.9rem;
        color: #6c757d;
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .service-info i {
        margin-right: 0.5rem;
    }

    /* 카테고리 필터 버튼 스타일 */

    .category-filter {
        margin: 0.25rem;
        transition: all 0.2s;
        padding: 8px 22px;
        color: #888;
        font-size: 1.08rem;
        font-weight: 700;
        border: 1px solid #eee;
        background: #fff;
        border-radius: 22px;
        box-shadow: none;
        outline: none;
    }

    .category-filter.active,
    .category-filter:hover,
    .category-filter:focus {
        background: #f5f5f7;
        color: #111;
        border: 1px solid #f5f5f7;
    }

    /* 반응형 디자인 */
    @media (max-width: 768px) {
        .card-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }

        .category-filter {
            width: 100%;
            margin: 0.25rem 0;
            font-size: 0.8rem;
        }

        .myapp__card-header {
            padding: 10px 15px;
        }

        .myapp-search__form {
            margin-bottom: 0.75rem;
        }

        .categorySwiper {
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .categorySwiper.mb-4 {
            margin-bottom: 0.75rem !important;
        }
    }

    /* PC 해상도에서 sticky-top 위치 조정 */
    @media (min-width: 992px) {
        main>div>.sticky-top {
            top: 82px !important;
            /* 상단 네비게이션 바 높이만큼 아래로 이동 */
            z-index: 1020;
            /* 네비게이션 바보다 낮고, 콘텐츠보다는 높게 */
        }

        .card-grid {
            max-width: 1440px;
            padding: 0 20px;
        }
    }

    .custom-gap {
        gap: 1rem;
        /* 원하는 간격 값으로 조정 */
    }

    /* Swiper 커스텀 스타일 */
    .categorySwiper {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 10px 0 !important;
        /*background: rgba(255, 255, 255, 0.55) !important;*/
        backdrop-filter: blur(16px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    }

    .swiper-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .swiper-slide {
        width: auto !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #000;
        padding: 0 0px;
        height: 100%;
        top: 0;
        margin-top: 0;
        right: 0 !important;
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.5rem;
    }

    /* 수정된 CSS 부분 */
    .back-button {
        position: sticky;
        top: 70px;
        z-index: 1000;
        background: white;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .card-img-top {
        /*height: 200px;*/
        object-fit: contain;
        width: 100% !important;
        /* 수정된 부분 */
    }

    .card-body .row {
        background-color: #fff !important;
    }

    #post-list .card-header {
        background-color: #f9f9f9 !important;
    }

    .myapp__card-header {
        padding: 20px 0 1px 0;
    }

    /* 컨테이너 width/여백 Bootstrap 기준에 맞춰 통일 */
    .container,
    .container-fluid,
    .myapp__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 {
            padding-left: 20px;
            padding-right: 20px;
        }*/
    }

    .myapp-search__form {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .myapp-search__input-group {
        display: flex;
        width: 100%;
        max-width: 420px;
        position: relative;
    }

    .myapp-search__input {
        width: 100%;
        padding: 13px 22px 13px 44px;
        border: none;
        border-radius: 24px;
        background-color: #f5f5f7;
        font-size: 1.08rem;
        color: #000;
        ;
        outline: none;
        font-weight: 500;
        box-shadow: none;
        transition: box-shadow 0.2s, background 0.2s;
    }

    .myapp-search__input::placeholder {
        color: #bbb;
        font-weight: 400;
    }

    .myapp-search__button {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #bbb;
        cursor: pointer;
        font-size: 18px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .myapp-search__icon {
        font-size: 18px;
    }

    /* 검색 및 카테고리 영역 컨테이너 */
    .search-category-container {
        position: sticky;
        background: transparent !important;
        z-index: 1020;
        top: 72px;
        left: 0;
        right: 0;
        padding: 15px 0;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
    }

    /* 카테고리 Swiper는 부모에 맞춰 100% */
    .categorySwiper {
        width: 100%;
        margin: 0 auto;
        /*padding: 10px 0;*/
        /*background: rgba(255, 255, 255, 0.55);*/
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-radius: 24px;
        box-shadow: none;
    }

    /* PC 해상도에서 네비게이션 스타일 */
    @media (min-width: 992px) {
        .search-category-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0;
        }

        .myapp__container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /*
        .card-grid {
            padding: 1rem 40px;
        }
        */
        .categorySwiper,
        .swiper-wrapper {
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
    }

    /* 모바일 해상도에서 네비게이션 스타일 */
    @media (max-width: 991px) {
        .search-category-container {
            top: 60px;
            padding: 0;
            max-width: 100%;
            width: 100%;
            margin: 0;
        }

        .myapp__container {
            padding: 0 20px;
        }

        .card-grid {
            padding: 0 20px;
        }

        .categorySwiper,
        .swiper-wrapper {
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
        }
    }

    /* 컨텐츠 영역 여백 조정 */
    .content-spacer {
        margin-top: 140px;
        /* 네비게이션 + 검색폼 영역 높이 */
    }

    @media (max-width: 991px) {
        .content-spacer {
            margin-top: 120px;
            /* 모바일 네비게이션 + 검색폼 영역 높이 */
        }
    }

    main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mt-4,
    .card-body,
    .rounded-3,
    .border-0 {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        background: none;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .modal-content {
        background: #fff;
        border-radius: 24px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .modal-header {
        padding: 1.5rem 2rem;
    }

    .modal-body {
        padding: 0 2rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
        color: #333;
    }

    .btn-close {
        padding: 0.5rem;
        margin: -0.5rem -0.5rem -0.5rem auto;
        opacity: 0.5;
        transition: opacity 0.2s;
    }

    .btn-close:hover {
        opacity: 1;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.2rem;
    }

    .category-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 1px 6px 0 rgba(30, 40, 90, 0.04);
        padding: 1.3rem 0.7rem 1.1rem 0.7rem;
        text-align: center;
        position: relative;
        transition: all 0.2s ease;
        text-decoration: none;
        color: #23272f;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        border: 1.5px solid #f3f4f7;
    }

    .category-card:hover {
        box-shadow: 0 4px 16px 0 rgba(30, 40, 90, 0.09);
        border: 1.5px solid #6ea8fe;
        background: #f7faff;
        transform: translateY(-2px) scale(1.01);
    }

    .category-icon {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
        color: #fff;
        background: linear-gradient(135deg, #6ea8fe 0%, #a7e0ff 100%);
        box-shadow: 0 2px 8px 0 rgba(110, 168, 254, 0.08);
    }

    .category-title {
        font-size: 1.08rem;
        font-weight: 700;
        margin-bottom: 0.18rem;
        color: #23272f;
        letter-spacing: -0.01em;
    }

    .category-desc {
        font-size: 0.91rem;
        color: #a0a4ae;
        font-weight: 400;
        margin-bottom: 0.1rem;
    }

    @media (max-width: 768px) {
        .modal-dialog {
            margin: 1rem;
        }

        .modal-header {
            padding: 1rem 1.5rem;
        }

        .modal-body {
            padding: 0 1.5rem 1.5rem;
        }

        .category-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1rem;
        }

        .category-card {
            min-height: 130px;
            padding: 1rem 0.5rem;
        }

        .category-icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .category-title {
            font-size: 0.95rem;
        }

        .category-desc {
            font-size: 0.8rem;
        }
    }