        /* 전역 * / body / .container 제거: 테마 레이아웃이 깨지지 않도록 상점 영역(.jmp-store)만 스타일 적용 */

        /* 레거시 클래스: .jmp-store 내부에만 적용해 테마와 충돌 방지 */
        .jmp-store .header {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .jmp-store .header-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jmp-store .header-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.6));
            padding: 20px;
            color: white;
        }

        .jmp-store .store-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .jmp-store .store-category {
            font-size: 14px;
            opacity: 0.9;
        }

        .jmp-store .info-section {
            padding: 20px;
            border-bottom: 8px solid #f8f9fa;
        }

        .jmp-store .info-item {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            gap: 12px;
        }

        .jmp-store .info-icon {
            width: 24px;
            height: 24px;
            color: #6366f1;
            flex-shrink: 0;
        }

        .jmp-store .info-content {
            flex: 1;
        }

        .jmp-store .info-label {
            font-size: 13px;
            color: #666;
            margin-bottom: 4px;
        }

        .jmp-store .info-value {
            font-size: 15px;
            color: #333;
        }

        .jmp-store .action-buttons {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            padding: 20px;
            border-bottom: 8px solid #f8f9fa;
        }

        .jmp-store .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 8px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .jmp-store .action-btn:hover {
            background: #f8f9fa;
            border-color: #6366f1;
        }

        .jmp-store .action-btn svg {
            width: 28px;
            height: 28px;
            color: #6366f1;
            margin-bottom: 6px;
        }

        .jmp-store .action-btn span {
            font-size: 12px;
            color: #333;
        }

        .jmp-store .section {
            padding: 20px;
            border-bottom: 8px solid #f8f9fa;
        }

        .jmp-store .section-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jmp-store .menu-grid {
            display: grid;
            gap: 16px;
        }

        .jmp-store .menu-item {
            display: flex;
            gap: 16px;
            padding: 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .jmp-store .menu-item:hover {
            background: #f8f9fa;
        }

        .jmp-store .menu-image {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .jmp-store .menu-info {
            flex: 1;
        }

        .jmp-store .menu-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .jmp-store .menu-desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .jmp-store .menu-price {
            font-size: 16px;
            font-weight: 700;
            color: #6366f1;
        }

        .jmp-store .coupon-list {
            display: grid;
            gap: 12px;
        }

        .jmp-store .coupon-item {
            display: flex;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 12px;
            padding: 16px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .jmp-store .coupon-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

        .jmp-store .coupon-info {
            flex: 1;
            z-index: 1;
        }

        .jmp-store .coupon-discount {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .jmp-store .coupon-desc {
            font-size: 13px;
            opacity: 0.9;
        }

        .jmp-store .coupon-btn {
            background: white;
            color: #6366f1;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            z-index: 1;
        }

        .jmp-store .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
        }

        .jmp-store .gallery-item {
            aspect-ratio: 1;
            overflow: hidden;
            cursor: pointer;
        }

        .jmp-store .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .jmp-store .gallery-item:hover img {
            transform: scale(1.05);
        }

        .jmp-store .review-list {
            display: grid;
            gap: 16px;
        }

        .jmp-store .review-item {
            padding: 16px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .jmp-store .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .jmp-store .review-user {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .jmp-store .user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #6366f1;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .jmp-store .user-info {
            font-size: 14px;
        }

        .jmp-store .user-name {
            font-weight: 600;
            margin-bottom: 2px;
        }

        .jmp-store .review-date {
            font-size: 12px;
            color: #666;
        }

        .jmp-store .review-rating {
            display: flex;
            gap: 2px;
        }

        .jmp-store .star {
            color: #fbbf24;
            font-size: 16px;
        }

        .jmp-store .review-content {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .jmp-store .review-images {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .jmp-store .review-image {
            aspect-ratio: 1;
            border-radius: 8px;
            overflow: hidden;
        }

        .jmp-store .review-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jmp-store .floating-actions {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            max-width: 728px;
            width: calc(100% - 40px);
            z-index: 100;
        }

        .jmp-store .floating-btn {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .jmp-store .btn-primary {
            background: #6366f1;
            color: white;
        }

        .jmp-store .btn-secondary {
            background: white;
            color: #6366f1;
            border: 2px solid #6366f1;
        }

        .jmp-store .floating-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .jmp-store .store-name {
                font-size: 24px;
            }

            .jmp-store .action-buttons {
                grid-template-columns: repeat(4, 1fr);
            }

            .jmp-store .menu-image {
                width: 80px;
                height: 80px;
            }

            .jmp-store .floating-actions {
                width: calc(100% - 32px);
            }
        }

        /* ========================================
         * JMP Store (store-page-design.php) — BS-Y5EFN 기준 통일
         * 모든 상점 타입: 동일 헤더·정보·액션·소개·갤러리·리뷰
         * ======================================== */
        .jmp-store * { margin: 0; padding: 0; box-sizing: border-box; }
        .jmp-store svg { max-width: 32px; max-height: 32px; }
        .jmp-store { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; background: #f8f9fa; color: #333; line-height: 1.6; width: 100%; max-width: 768px; margin-left: auto; margin-right: auto; }
        .jmp-store .jmp-store-container { width: 100%; background: #fff; min-height: 100vh; padding-bottom: 120px; }
        .jmp-store .jmp-store-header { position: relative; height: 280px; overflow: hidden; }
        .jmp-store .jmp-store-header-img { width: 100%; height: 100%; object-fit: cover; }
        .jmp-store .jmp-store-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); padding: 20px; color: #fff; }
        .jmp-store .jmp-store-name { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
        .jmp-store .jmp-store-category { font-size: 14px; opacity: 0.9; }
        .jmp-store .jmp-store-manage-wrap { position: absolute; top: 16px; right: 16px; z-index: 10; }
        .jmp-store .jmp-store-manage-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; backdrop-filter: blur(8px); transition: background 0.2s, border-color 0.2s, color 0.2s; }
        .jmp-store .jmp-store-manage-btn:hover { background: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.6); color: #fff; }
        .jmp-store .jmp-store-manage-btn svg { width: 18px !important; height: 18px !important; min-width: 18px; max-width: 18px; min-height: 18px; max-height: 18px; flex-shrink: 0; }
        .jmp-store .jmp-store-info-section { padding: 20px; border-bottom: 8px solid #f8f9fa; }
        .jmp-store .jmp-store-info-item { display: flex; align-items: flex-start; padding: 12px 0; gap: 12px; }
        .jmp-store .jmp-store-info-icon { width: 24px !important; height: 24px !important; min-width: 24px; max-width: 24px; min-height: 24px; max-height: 24px; color: #6366f1; flex-shrink: 0; }
        .jmp-store .jmp-store-info-label { font-size: 13px; color: #666; margin-bottom: 4px; }
        .jmp-store .jmp-store-info-value { font-size: 15px; color: #333; }
        .jmp-store .jmp-store-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 20px; border-bottom: 8px solid #f8f9fa; }
        .jmp-store .jmp-store-action-btn { display: flex; flex-direction: column; align-items: center; padding: 12px 8px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: all 0.2s; text-decoration: none; color: inherit; }
        .jmp-store .jmp-store-action-btn:hover { background: #f8f9fa; border-color: #6366f1; }
        .jmp-store .jmp-store-action-btn svg { width: 28px !important; height: 28px !important; min-width: 28px; max-width: 28px; min-height: 28px; max-height: 28px; color: #6366f1; margin-bottom: 6px; flex-shrink: 0; }
        .jmp-store .jmp-store-action-btn span { font-size: 12px; color: #333; }
        .jmp-store .jmp-store-section { padding: 20px; border-bottom: 8px solid #f8f9fa; }
        .jmp-store .jmp-store-section-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .jmp-store .jmp-store-section-title svg { width: 24px !important; height: 24px !important; min-width: 24px; max-width: 24px; min-height: 24px; max-height: 24px; color: #6366f1; flex-shrink: 0; }
        .jmp-store .jmp-store-intro { font-size: 15px; line-height: 1.7; color: #374151; }
        .jmp-store .jmp-store-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
        .jmp-store .jmp-store-gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
        .jmp-store .jmp-store-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .jmp-store .jmp-store-gallery-item:hover img { transform: scale(1.05); }
        .jmp-store .jmp-store-review-list { display: grid; gap: 16px; }
        .jmp-store .jmp-store-review-item { padding: 16px; background: #f8f9fa; border-radius: 12px; }
        .jmp-store .jmp-store-review-head { display: flex; justify-content: space-between; margin-bottom: 12px; }
        .jmp-store .jmp-store-review-user { display: flex; align-items: center; gap: 8px; }
        .jmp-store .jmp-store-review-avatar { width: 36px; height: 36px; border-radius: 50%; background: #6366f1; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
        .jmp-store .jmp-store-review-name { font-weight: 600; margin-bottom: 2px; }
        .jmp-store .jmp-store-review-date { font-size: 12px; color: #666; }
        .jmp-store .jmp-store-review-stars { color: #fbbf24; font-size: 16px; }
        .jmp-store .jmp-store-review-content { font-size: 14px; line-height: 1.6; }
        .jmp-store .jmp-store-review-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
        .jmp-store .jmp-store-review-photo { aspect-ratio: 1; border-radius: 8px; overflow: hidden; }
        .jmp-store .jmp-store-review-photo img { width: 100%; height: 100%; object-fit: cover; }
        .jmp-store .jmp-store-review-empty { padding: 24px 0; color: #6b7280; font-size: 15px; text-align: center; }
        .jmp-store .jmp-review-write-notice { padding: 12px 16px; background: #f3f4f6; border-radius: 8px; color: #6b7280; font-size: 14px; margin-top: 12px; }
        @media (max-width: 768px) {
            .jmp-store .jmp-store-name { font-size: 24px; }
            .jmp-store .jmp-store-actions { grid-template-columns: repeat(4, 1fr); }
        }
