/**
 * index.css - 메인페이지 전용 스타일
 * Bootstrap 의존성 없이 Tailwind CSS와 함께 사용
 */

/* ========================================
   테마 스타일
======================================== */
.theme-light {
    background-color: #f5f5f5;
}

/* ========================================
   Swiper 공통
======================================== */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   메인 페이지 컨테이너
======================================== */
.main_page p {
    margin-bottom: 0;
    color: #1e1e1e;
}

/* footer 내부 p 요소는 Tailwind 클래스 색상 사용 */
.main_page footer p {
    color: inherit;
}

/* ========================================
   메인 헤더
======================================== */
.main_page .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background-color: #fff;
    max-width: 576px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 헤더 고정으로 인한 콘텐츠 가림 방지 */
.page-content.main_page {
    padding-top: 56px;
}

.main-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.main-header .header-logo {
    flex-shrink: 0;
}

.main-header .header-logo a {
    display: block;
    width: 40px;
    height: 35px;
    line-height: 0;
}

.main-header .header-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-header .header-address {
    flex-shrink: 1;
    position: relative;
    min-width: 0;
    margin-left: 6px;
    margin-right: auto;
}

.main-header .header-address .address-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    max-width: 100%;
}

.main-header .header-address .address-text {
    font-size: 16px;
    font-weight: 600;
    color: #252525;
    letter-spacing: -0.32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.main-header .header-address .dropdown-icon {
    flex-shrink: 0;
    width: 20px;
    height: 19px;
    background: url("../images/ico/ico_dropdown_arrow.svg") no-repeat center / contain;
}

.main-header .header-bell {
    flex-shrink: 0;
}

.main-header .header-bell .bell-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.main-header .header-bell .bell-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ========================================
   서비스 카드 영역
======================================== */
.service-cards-bg {
    background: #ff6161;
    padding: 20px 16px 44px 16px;
    margin: 0;
}

.service-cards .card-grid {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.service-cards .service-card {
    position: relative;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    box-shadow: 3px 3px 2.6px 0px rgba(89, 0, 0, 0.08);
    overflow: hidden;
}

.service-cards .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 2px 2px 4px 0px rgba(255, 255, 255, 0.38);
    border-radius: 8px;
}

.service-cards .service-card .text-content {
    position: relative;
    z-index: 1;
}

.service-cards .service-card .card-label {
    font-family: 'Paperlogy', 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
    margin: 0;
}

.service-cards .service-card .card-title {
    font-family: 'Paperlogy', 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
    margin: 0;
}

/* 대신해줘 카드 (큰 카드) */
.service-cards .errand-card {
    flex: 2.3;
    height: 95px;
    background: #ff9b92;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 0;
}

.service-cards .errand-card .card-label,
.service-cards .errand-card .card-title {
    color: #ffffff;
}

.service-cards .errand-card .card-character {
    width: 71px;
    flex-shrink: 0;
    align-self: stretch;
}

.service-cards .errand-card .card-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* 파트너 신청하기 카드 (작은 카드) */
.service-cards .partner-card {
    flex: 1;
    height: 95px;
    background: #ffd0ce;
}

.service-cards .partner-card .card-label,
.service-cards .partner-card .card-title {
    color: #ff6161;
}

/* 내 주변 심부름 카드 (집사용) */
.service-cards .nearby-errand-card {
    flex: 1;
    height: 95px;
    background: #fecdd3;
}

.service-cards .nearby-errand-card .card-label,
.service-cards .nearby-errand-card .card-title {
    color: #ff6161;
}

/* ========================================
   카테고리 그리드
======================================== */
.category-grid {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 24px 12px;
    transform: translateY(-24px);
    margin: 0 0 -24px 0;
    position: relative;
    z-index: 1;
}

.category-grid .category-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 24px;
}

.category-grid .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
}

.category-grid .category-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-grid .category-item span {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    color: #000000;
    text-align: center;
    word-break: keep-all;
}

@media (max-width: 400px) {
    .category-grid .category-item span {
        font-size: 12px;
        letter-spacing: -0.24px;
    }
}

/* ========================================
   이벤트 배너
======================================== */
.event_banner {
    border-radius: 8px;
    margin: 0 16px 8px 16px;
}

.event_banner .swiper {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.event_banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event_banner .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.event_banner .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    text-align: center;
}

.event_banner .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #D0D0D0;
    opacity: 1;
    margin: 0 2px;
    border-radius: 50%;
}

.event_banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff8a80;
}

.event_banner.single-slide {
    margin: 0 16px 20px 16px;
}

.event_banner.single-slide .swiper-pagination {
    display: none;
}

/* ========================================
   미리해줘 배너
======================================== */
.main_page .dia_banner {
    border-radius: 8px;
    margin: 0 16px 8px 16px;
}

.main_page .dia_banner .swiper {
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.main_page .dia_banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_page .dia_banner .swiper-slide .img_con {
    width: 100%;
}

.main_page .dia_banner .swiper-slide .img_con img {
    display: block;
    width: 100%;
    height: auto;
}

.main_page .dia_banner .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100%;
    text-align: center;
}

.main_page .dia_banner .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #D0D0D0;
    opacity: 1;
    margin: 0 2px;
    border-radius: 50%;
}

.main_page .dia_banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff8a80;
}

.main_page .dia_banner.single-slide {
    margin: 0 16px 20px 16px;
}

.main_page .dia_banner.single-slide .swiper-pagination {
    display: none;
}

/* ========================================
   고객 평점 TOP5
======================================== */
.top_review {
    margin: 0 !important;
    margin-bottom: 30px !important;
}

.top_review .tit_con {
    margin-left: 16px;
}

.top_review .tit_con .txt01 {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
    color: #1e1e1e;
}

.top_review .tit_con .txt01 .red {
    color: #c80000;
}

.top_review .tab-category-container {
    position: relative;
}

.top_review .tab-category-container .tabSwiper {
    width: 100%;
    padding: 0;
}

.top_review .tab-category-container .tab {
    display: flex;
    white-space: nowrap;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.top_review .tab-category-container .tab .tab__item {
    flex: 0 0 auto;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #D0D0D0;
}

.top_review .tab-category-container .tab .tab__item.swiper-slide {
    width: auto !important;
}

.top_review .tab-category-container .tab .tab__item a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
}

.top_review .tab-category-container .tab .tab__item a p {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    color: #7a7a7a;
}

.top_review .tab-category-container .tab .tab__item.active {
    border-bottom: 1px solid #C80000;
}

.top_review .tab-category-container .tab .tab__item.active a p {
    font-weight: 600;
    color: #000;
}

.top_review .tab__content-wrapper .tab__content {
    display: none;
}

.top_review .tab__content-wrapper .tab__content.active {
    display: block;
}

.top_review .swiper {
    padding: 0 16px;
}

.top_review .swiper-slide {
    width: 120px !important;
}

.top_review .swiper-slide .img_con {
    position: relative;
    height: 80px;
    width: 100%;
}

.top_review .swiper-slide .img_con img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.top_review .swiper-slide .txt_con {
    margin-top: 6px;
}

.top_review .swiper-slide .txt_con .title_score {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4px;
    margin-bottom: 3px;
}

.top_review .swiper-slide .txt_con .txt01 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.28px;
    color: #000;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.top_review .swiper-slide .txt_con .scope {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.top_review .swiper-slide .txt_con .scope img {
    width: 17px;
    height: 17px;
}

.top_review .swiper-slide .txt_con .scope p {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    color: #2f2f2f;
    margin: 0;
}

.top_review .swiper-slide .txt_con .scope p b {
    font-weight: 700;
}

.top_review .swiper-slide .txt_con .badge_con ul {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    row-gap: normal;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Badge 스타일 (Bootstrap 대체) */
.badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 2px;
    font-family: 'Pretendard', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.22px;
}

.bg-portfolio {
    background-color: rgba(1, 199, 174, 0.23) !important;
    color: #01c7ae !important;
}

.bg-warning {
    background-color: #ffd48e !important;
    color: #f05e1f !important;
}

.bg-success {
    background-color: #b8e4ff !important;
    color: #1f87c8 !important;
}

.bg-danger {
    background-color: #ffc7c7 !important;
    color: #fa0000 !important;
}

.bg-info {
    background-color: #e0f7ff !important;
    color: #0091cc !important;
}

.bg-primary {
    background-color: #C80000 !important;
}

.text-white {
    color: #fff !important;
}

/* ========================================
   유틸리티 클래스 (Bootstrap 대체)
======================================== */
.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.flex-column {
    flex-direction: column !important;
}

.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }

.w-100 {
    width: 100% !important;
}

.p-0 { padding: 0 !important; }
.m-0 { margin: 0 !important; }

.rounded-4 {
    border-radius: 1rem !important;
}

.border-0 {
    border: 0 !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

/* ========================================
   검색 결과 없음
======================================== */
.no-search {
    text-align: center;
    padding: 40px 20px;
    color: #7a7a7a;
}

/* ========================================
   대신해줘 모달
======================================== */
.instead {
    text-align: center;
}

.instead .txt01 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #C80000;
}

.instead .img_con img {
    width: 100px;
}

.instead .txt_con {
    width: 50%;
    margin: 20px auto;
}

.instead .txt_con p {
    word-break: keep-all;
}

.instead .txt_con .txt02 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.instead .txt_con .txt03 {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 400px) {
    .instead .txt_con {
        width: calc(50% + 100px);
        margin: 20px auto;
    }
}

/* ========================================
   커스텀 Tailwind 모달 스타일
======================================== */
[data-modal] {
    transition: opacity 0.2s ease;
    opacity: 0;
}

[data-modal].modal-visible {
    opacity: 1;
}

[data-modal].hidden {
    display: none !important;
}

/* 모달 오버레이 */
.modal-overlay {
    transition: opacity 0.2s ease;
}

/* 모달 콘텐츠 애니메이션 */
.modal-content-box {
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: scale(0.95);
    opacity: 0;
}

[data-modal].modal-visible .modal-content-box {
    transform: scale(1);
    opacity: 1;
}

/* ========================================
   심부름 서비스 선택 모달
======================================== */
.errand-service-content {
    max-width: 336px;
    width: calc(100vw - 24px);
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.errand-service-body {
    padding: 26px 20px;
}

.errand-service-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: -0.36px;
    line-height: normal;
    margin-bottom: 18px;
    text-align: left;
}

.errand-service-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.errand-btn {
    width: 100%;
    height: 104px;
    border-radius: 8px;
    box-shadow: 0px 0px 5.3px 0px rgba(0, 0, 0, 0.34);
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: none;
}

.errand-btn-request {
    background: linear-gradient(135deg, #f45c43 0%, #eb3349 100%);
    opacity: 0.8;
}

.errand-btn-history {
    background: #ffffff;
    border: 1px solid #ff2e2e;
}

.errand-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 29px 16px;
}

.errand-btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.errand-btn-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.36px;
    line-height: normal;
    margin: 0;
}

.errand-btn-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    line-height: normal;
    margin: 0;
}

.errand-btn-request .errand-btn-title,
.errand-btn-request .errand-btn-subtitle {
    color: #ffffff;
}

.errand-btn-request .errand-btn-icon img {
    filter: brightness(0) invert(1);
}

.errand-btn-history .errand-btn-title {
    color: #ff2e2e;
}

.errand-btn-history .errand-btn-subtitle {
    color: #ff6161;
}

.errand-btn-history .errand-btn-icon img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(6814%) hue-rotate(356deg) brightness(101%) contrast(109%);
}

.errand-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.errand-btn-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ========================================
   파트너 신청 모달
======================================== */
.partner-modal-content {
    max-width: 336px;
    width: calc(100vw - 24px);
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.partner-modal-body {
    padding: 26px 20px;
}

.partner-modal-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: -0.36px;
    line-height: normal;
    margin-bottom: 18px;
    text-align: left;
}

.partner-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-btn-item {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 5.3px 0px rgba(0, 0, 0, 0.34);
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: none;
}

.partner-btn-expert {
    background: linear-gradient(135deg, #f45c43 0%, #eb3349 100%);
    opacity: 0.8;
}

.partner-btn-mate {
    background: #ffffff;
    border: 1px solid #ff2e2e;
}

.partner-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 16px;
}

.partner-btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.partner-btn-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.36px;
    line-height: normal;
    margin: 0;
}

.partner-btn-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.28px;
    line-height: normal;
    margin: 0;
}

.partner-btn-expert .partner-btn-title,
.partner-btn-expert .partner-btn-desc {
    color: #ffffff;
}

.partner-btn-expert .partner-btn-icon img {
    filter: brightness(0) invert(1);
}

.partner-btn-mate .partner-btn-title {
    color: #ff2e2e;
}

.partner-btn-mate .partner-btn-desc {
    color: #ff6161;
}

.partner-btn-mate .partner-btn-icon img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(6814%) hue-rotate(356deg) brightness(101%) contrast(109%);
}

.partner-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.partner-btn-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ========================================
   전문가 가입 유도 모달 v2
======================================== */
.expert-signup-v2-content {
    max-width: 336px;
    width: calc(100vw - 24px);
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.expert-signup-v2-body {
    padding: 26px 20px;
}

.expert-signup-v2-header {
    margin-bottom: 18px;
}

.expert-signup-v2-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: -0.36px;
    line-height: normal;
    margin-bottom: 4px;
    text-align: left;
}

.expert-signup-v2-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7a7a7a;
    letter-spacing: -0.28px;
    line-height: normal;
    text-align: left;
    margin: 0;
}

.expert-signup-v2-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.expert-signup-card {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 0px 5.3px 0px rgba(0, 0, 0, 0.34);
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}

.expert-signup-card-expert {
    background: linear-gradient(135deg, #f45c43 0%, #eb3349 100%);
    opacity: 0.8;
}

.expert-signup-card-mate {
    background: #ffffff;
    border: 1px solid #ff2e2e;
}

.expert-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 16px;
}

.expert-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.expert-card-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.36px;
    line-height: normal;
    margin: 0;
}

.expert-card-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.28px;
    line-height: normal;
    margin: 0;
}

.expert-signup-card-expert .expert-card-title,
.expert-signup-card-expert .expert-card-desc {
    color: #ffffff;
}

.expert-signup-card-expert .expert-card-icon img {
    filter: brightness(0) invert(1);
}

.expert-signup-card-mate .expert-card-title {
    color: #ff2e2e;
}

.expert-signup-card-mate .expert-card-desc {
    color: #ff6161;
}

.expert-signup-card-mate .expert-card-icon img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(96%) saturate(6814%) hue-rotate(356deg) brightness(101%) contrast(109%);
}

.expert-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.expert-card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.expert-signup-v2-close {
    width: 100%;
    height: 54px;
    background-color: #FF2E2E;
    border: none;
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.expert-signup-v2-close:hover {
    background-color: #FA0000;
}
.expert-signup-v2-close:active,
.expert-signup-v2-close:focus {
    background-color: #C80000;
}

/* ========================================
   팝업 모달
======================================== */
#main-popup-swiper .swiper-pagination-popup {
    position: relative !important;
    bottom: auto !important;
    margin-top: 10px;
}

/* ========================================
   모달 버튼 스타일
======================================== */
.modal-btn {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.modal-btn-primary {
    background: #C80000;
    color: #ffffff;
}

.modal-btn-light {
    background: #f5f5f5;
    color: #1e1e1e;
}

.modal-btn-dark {
    background: #1e1e1e;
    color: #ffffff;
}

/* ========================================
   리뷰 섹션
======================================== */
.review_con .review .swiper-wrapper .swiper-slide {
    width: 80%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #7a7a7a;
    border-radius: 10px;
}

.review_con .shop_profile {
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #7a7a7a;
}

.review_con .shop_profile .avatar {
    position: relative;
    width: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.review_con .shop_profile .avatar::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.review_con .shop_profile .avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.review_con .shop_profile .txt_con .shop_name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: 700;
}

.review_con .shop_profile .txt_con .cate {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: 500;
    color: #585858;
}

.review_con .contents {
    margin-top: 20px;
}

.review_con .contents .scope {
    margin-bottom: 20px;
}

.review_con .contents .scope ul {
    gap: 3px;
}

.review_con .contents .scope .num {
    margin-left: 5px;
    font-size: 16px;
    font-weight: 700;
}

.review_con .contents .write p {
    height: 64px;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all !important;
}

.review_con .contents .customer {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #585858;
}

/* ========================================
   알림 배지 스타일
======================================== */
#notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    padding: 0 4px;
    font-family: 'Pretendard', sans-serif;
}
